0f868c9336512e6f940dc25284548919da6d2f59,portal-impl/src/com/liferay/portlet/calendar/service/http/CalEventJSONSerializer.java,CalEventJSONSerializer,toJSONObject,#CalEvent#,53

Before Change


		jsonObj.put("modifiedDate", model.getModifiedDate().getTime());
		jsonObj.put("title", model.getTitle());
		jsonObj.put("description", model.getDescription());
		jsonObj.put("startDate", model.getStartDate().getTime());
		jsonObj.put("endDate", model.getEndDate().getTime());
		jsonObj.put("durationHour", model.getDurationHour());
		jsonObj.put("durationMinute", model.getDurationMinute());

After Change


		jsonObj.put("title", model.getTitle());
		jsonObj.put("description", model.getDescription());

		Date startDate = model.getStartDate();

		String startDateJSON = StringPool.BLANK;